﻿.pss-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

.pss-letters {
    display: flex;
    gap: 20px;
}

    .pss-letters span {
        font-size: 5rem;
        font-weight: 900;
        color: #3498db;
        animation: pulse 1.5s infinite ease-in-out;
        display: inline-block;
        text-shadow: 0 2px 6px rgba(0,0,0,0.15);
        background: linear-gradient(45deg, #3498db, #2980b9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .pss-letters span:nth-child(1) {
            animation-delay: 0s;
        }

        .pss-letters span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .pss-letters span:nth-child(3) {
            animation-delay: 0.6s;
        }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.loader-subtitle {
    margin-top: 12px;
    font-weight: 400;
    color: #555;
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.05em;
    text-align: center;
    user-select: none;
    opacity: 0.7;
}


.loader-loading-text {
    margin-top: 12px;
    font-weight: 600;
    color: #3498db;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dots::after {
    content: '';
    animation: dotsAnim 1.5s steps(3, end) infinite;
    display: inline-block;
    width: 1.2em;
    text-align: left;
}

@keyframes dotsAnim {
    0%, 20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%, 100% {
        content: '...';
    }
}
